home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 1_0-2 / EARTHPLO / EP_EXTER.H < prev    next >
C/C++ Source or Header  |  1987-08-15  |  1KB  |  71 lines

  1. #include    "DialogMgr.h"
  2. #include    "ControlMgr.h"
  3. #include    "stdio.h"
  4.  
  5. extern Boolean
  6.     hasColorQD;
  7.  
  8. extern    WindowPtr    cWindow;
  9. extern    WindowPtr    eWindow;
  10.  
  11. extern    PicHandle
  12.     ePict,ebmPict;
  13.  
  14. extern    int    draw;    /* != 0 if we want to draw the line.  ==0 if move to point */
  15. extern    int    over;    /* != 0 when point is outside visible area */
  16.  
  17. extern    CursHandle
  18.     watchCursorHand;
  19.  
  20. extern    Handle
  21.     iconHandle;
  22.  
  23. extern    double    xsize,ysize;
  24. extern    double    half_xsize,half_ysize;
  25. extern    int        ixsize,iysize;
  26.  
  27. extern    DialogPtr    optionsDialogPtr;
  28.  
  29. extern    int
  30.     npictButton,        /* options dialog items */
  31.     nbitmapButton,
  32.     nintButton,
  33.     nfpButton,
  34.     nhiddenlinesBox,
  35.     nlnlBox,
  36.     nsquareBox;
  37. extern    long
  38.     backgroundC,
  39.     earthbackgroundC,
  40.     earthoutlineC,
  41.     latC,
  42.     longC,
  43.     landC;
  44.  
  45. extern    Rect    latSBRect,
  46.                 lonSBRect,
  47.                 altSBRect,
  48.                 latDataRect,
  49.                 lonDataRect,
  50.                 altDataRect,
  51.                 northRect,
  52.                 southRect,
  53.                 eastRect,
  54.                 westRect,
  55.                 mileRect,
  56.                 kmRect,
  57.                 earthWindowRect,
  58.                 controlWindowRect,
  59.                 iconRect;
  60.  
  61. extern    ControlHandle
  62.     latSB,
  63.     lonSB,
  64.     altSB,
  65.     northCheck,
  66.     southCheck,
  67.     eastCheck,
  68.     westCheck,
  69.     mileCheck,
  70.     kmCheck;
  71.